page.tsx 330 B

123456789101112131415
  1. 'use client'
  2. import type { FC } from 'react'
  3. import React from 'react'
  4. import type { IMainProps } from '@/app/components/share/chat'
  5. import ChatWithHistoryWrap from '@/app/components/base/chat/chat-with-history'
  6. const Chat: FC<IMainProps> = () => {
  7. return (
  8. <ChatWithHistoryWrap />
  9. )
  10. }
  11. export default React.memo(Chat)